ArcFM Responder Mobile Developer Guide
OptionAction<TKey,TValue> Delegate






Syntax
'Declaration
 
Public Delegate Sub OptionAction
    (Of TKey,TValue)( _
   ByVal key As TKey, _
   ByVal value As TValue _
) 
'Usage
 
Dim instance As New OptionAction(Of TKey,TValue)(AddressOf HandlerMethod)
public delegate void OptionAction<TKey,TValue>( 
   TKey key,
   TValue value
)
public delegate OptionAction( 
    key: TKey;
    value: TValue
);
JScript does not support Generics.
public: __gc __delegate void OptionAction<TKey,TValue>( 
   TKey* key,
   TValue* value
)
generic<typename TKey>
generic<typename TValue>
public delegate void OptionAction( 
   TKey^ key,
   TValue^ value
)

Parameters

key
value

Type Parameters

TKey
TValue
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

OptionAction<TKey,TValue> Members
NDesk.Options Namespace

Send Feedback